ARTICLES > PHP

PHP insert single quote into database Turn Back

2017-01-11 17:57:50

 
PHP ฟังก์ชั่นสำหรับจัดการกับ single quote (') ก่อนที่จะ insert ลงฐานข้อมูล
function string_sanitize($s) {
    $result = str_replace(" ' ", " ' ' ", $s);
    return $result;
}
 
วิธีการคือ ค้นหา string ที่มีเครื่องหมาย Single quote เมื่อพบแล้ว ให้เพิ่มเข้าไปอีก 1 ตัว
Turn Back